home *** CD-ROM | disk | FTP | other *** search
- /*
- MDIDEMO.HPP - (C) 1991 by Joachim Kainz 'On a mission from Bhudda'
- */
- #if !defined (__HELLO_HPP)
-
- #define __HELLO_HPP 1
-
- #include <mdi.hpp>
- #include "mdidemo.h"
-
- class MDIDEMO : public MDI
- {
- protected:
- METHOD WMCommand (WORD wID, WORD wMsg, HWND hCtl);
-
- public:
- MDIDEMO (int nShow = SW_NORMAL);
- };
-
- class DEMOCHILD : public MDICHILD
- {
- protected:
- static WORD wCount;
-
- PSTR pTitle;
- HFONT hFont;
-
- METHOD WMPaint ();
- METHOD WMDestroy ();
-
- public:
- DEMOCHILD ();
-
- };
- #endif
-